🩹 [Patch]: Bump Process-PSModule to v5#8
Merged
Marius Storhaug (MariusStorhaug) merged 3 commits intomainfrom Oct 4, 2025
Merged
🩹 [Patch]: Bump Process-PSModule to v5#8Marius Storhaug (MariusStorhaug) merged 3 commits intomainfrom
Marius Storhaug (MariusStorhaug) merged 3 commits intomainfrom
Conversation
There was a problem hiding this comment.
Pull Request Overview
This pull request consolidates GitHub Actions workflows and updates the Process-PSModule workflow to version 5. The changes simplify CI/CD processes by merging scheduled and manual triggers into a single workflow while removing unused linting configurations.
- Consolidated workflow triggers by moving scheduled and manual execution capabilities into the main Process-PSModule workflow
- Updated Process-PSModule workflow from v4 to v5
- Removed redundant Linter workflow and associated configuration files
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/Process-PSModule.yml |
Added workflow_dispatch and schedule triggers, updated workflow version to v5 |
.github/workflows/Nightly-Run.yml |
Removed entire file as functionality moved to main workflow |
.github/workflows/Linter.yml |
Removed entire file to eliminate redundant linting process |
.github/linters/.jscpd.json |
Removed configuration file for unused code duplication checker |
.github/dependabot.yml |
Added automatic labeling for GitHub Actions dependency PRs |
.github/PSModule.yml |
Added new configuration file with 50% code coverage target |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
Module LinkedIn - 0.0.5 published to the PowerShell Gallery. |
|
GitHub release for LinkedIn v0.0.5 has been created. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request makes several updates to the repository's GitHub Actions workflows and configuration files, focusing on simplifying CI/CD processes, updating dependencies, and improving test configuration. The most important changes include consolidating scheduled and manual workflow triggers, updating workflow versions, removing unused workflow files and linter configurations, and adding code coverage targets.
Workflow and CI/CD Improvements:
Process-PSModule.ymlworkflow, removing the separateNightly-Run.ymlfile and adding bothworkflow_dispatchandscheduletriggers toProcess-PSModule.yml. [1] [2]Process-PSModule.ymlfromv4tov5for improved reliability and features.Configuration and Dependency Management:
.github/PSModule.ymlconfiguration file to set a code coverage target of 50% for tests, improving test quality standards.dependabot.ymlto automatically adddependenciesandgithub-actionslabels to GitHub Actions dependency PRs.Linter and Code Quality Tools:
Linter.ymlworkflow and the.jscpd.jsonconfiguration file, streamlining the repository by eliminating unused or redundant linting and code duplication checks. [1] [2]